home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interplay's Learn to Program Basic (Review Copy)
/
Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO
/
pc
/
ltpbasic
/
refxmpl
/
if02.bas
< prev
next >
Wrap
BASIC Source File
|
1998-04-07
|
167b
|
10 lines
Print "Enter a number greater than"
Print "five for a message."
Input a
If a > 5 Then
Print "Hi There!"
Print "You've entered a number"
Print "Greater than 5!"
EndIf